home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / Makefile.in < prev    next >
Makefile  |  1996-02-13  |  652b  |  36 lines

  1. # Base level Makefile.in for kaffe.
  2. #
  3. # Copyright (c) 1996 Systems Architecture Research Centre,
  4. #           City University, London, UK.
  5. #
  6. # See the file "license.terms" for information on usage and redistribution
  7. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  8. #
  9. # Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  10.  
  11. subdirs=    @subdirs@
  12.  
  13. all:
  14.     @for i in $(subdirs); \
  15.     do \
  16.         (cd $$i ; $(MAKE)) \
  17.     done
  18.  
  19. clean:
  20.     @for i in $(subdirs); \
  21.     do \
  22.         (cd $$i ; $(MAKE) clean) \
  23.     done
  24.  
  25. distclean:
  26.     @for i in $(subdirs); \
  27.     do \
  28.         (cd $$i ; $(MAKE) distclean) \
  29.     done
  30.  
  31. install:
  32.     @for i in $(subdirs); \
  33.     do \
  34.         (cd $$i ; $(MAKE) install) \
  35.     done
  36.